home *** CD-ROM | disk | FTP | other *** search
/ The Aircraft Encyclopedia / The Aircraft Encyclopedia.iso / install.dat next >
Text File  |  1993-08-04  |  3KB  |  82 lines

  1. @DefineProject
  2.         @Name           = "THE AIRCRAFT ENCYCLOPEDIA"
  3.     @Version    = "V1.0"
  4.         @Subdir         = "PLANES"
  5.     @OutDrive     = C
  6.     @Group         = "A"
  7.         @Requires  500000       /* requires .3 megabytes */
  8.     @Requires @Harddisk
  9. @EndProject
  10. @Display
  11.     @Cls
  12.  
  13.         This program will install @Name Version @Version
  14.         on your computer system.
  15.     
  16.     You may press the [Esc] key at any time to abort the
  17.     installation.  INSTALL will ask you several questions about your
  18.     computer hardware.
  19.  
  20.     Each question has a default answer.  If the default answer is
  21.     correct, press the ENTER key in response to the question.
  22.     Otherwise, type the answer and then press the ENTER key.
  23.  
  24.     If you make a mistake while typing, press the BACKSPACE key
  25.     and then retype the answer.
  26.  
  27. @Pause
  28. @EndDisplay
  29.  
  30. @GetOutDrive
  31.     @Cls
  32.     On which disc drive do you wish to install
  33.     @Name?
  34.  
  35. @EndOutDrive
  36.  
  37. @GetSubdir
  38.     @Cls
  39.     Now you need to specify the disc destination subdirectory.
  40.     The subdirectory is the location on your disc where
  41.     @Name system will be installed.
  42.     
  43.     If you don't know what a "subdirectory" is, you probably need not
  44.     worry about it and should just press Enter at the next prompt.
  45.  
  46.     @Prompt = "Which subdirectory ([Enter] = @Subdir) ?"
  47. @EndSubdir
  48.  
  49. @Finish
  50.         Creating PLANES.BAT file...
  51.     @ChDrive @OutDrive
  52.         @MkDir("@OutDrive:\\@SubDir")
  53.         @System "echo @@ECHO OFF                     >  @OutDrive:\\@SubDir\\PLANES.BAT"
  54.         @System "echo SET MB_TMP=@OutDrive:\\@SubDir >> @OutDrive:\\@SubDir\\PLANES.BAT"
  55.         @System "echo SET MB_ROM=@InDrive:\\DICKS    >> @OutDrive:\\@SubDir\\PLANES.BAT"
  56.         @System "echo MBRT.EXE                       >> @OutDrive:\\@SubDir\\PLANES.BAT"
  57.         @System "echo SET MB_TMP                     >> @OutDrive:\\@SubDir\\PLANES.BAT"
  58.         @System "echo SET MB_ROM                     >> @OutDrive:\\@SubDir\\PLANES.BAT"
  59.  
  60.         Transferring files...
  61.         @Copy ("@InDrive:\\DICKS\\DICKS.OTL",     "@OutDrive:\\@SubDir\\DICKS.OTL")
  62.         @Copy ("@InDrive:\\DICKS\\MBRT.EXE",      "@OutDrive:\\@SubDir\\MBRT.EXE")
  63.         @Copy ("@InDrive:\\DICKS\\STOPWRDS.LST",  "@OutDrive:\\@SubDir\\STOPWRDS.LST")
  64.         @Copy ("@InDrive:\\DICKS\\DRVLIB.CSI",    "@OutDrive:\\@SubDir\\DRVLIB.CSI")
  65.  
  66.         @MkDir("@OutDrive:\\@SubDir\\00003830")
  67.         @Copy ("@InDrive:\\DICKS\\00003830\\CURMARKS.IDX",  "@OutDrive:\\@SubDir\\00003830\\CURMARKS.IDX")
  68.  
  69.  
  70.         @ChDrive @OutDrive
  71.         @Chdir   "@SubDir"
  72.     @Cls
  73.     
  74.     Installation of @name is complete.
  75.     
  76.     To run @name, simply enter "PLANES" at the DOS prompt,
  77.     from the @SubDir directory of drive @Outdrive.
  78.  
  79.     @Pause
  80.  
  81. @EndFinish
  82.